home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -in_the_mag- / reader_requests / wild / support / mydiff / mydiff.c next >
C/C++ Source or Header  |  2000-02-23  |  199b  |  19 lines

  1.  
  2. /*
  3.  
  4. Algo: Cercare pezzi di files uguali, in qualsiasi punto, grandi almeno 20 bytes.
  5.  
  6. */
  7.  
  8. struct chunk
  9. {
  10.  ULONG         size;
  11.  UBYTE         flags;
  12.  UBYTE         hole00;
  13.  struct chunk     *friend;
  14.  UBYTE        *data;
  15. };
  16.  
  17.  
  18.  
  19.